home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 5828 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  722 b 

  1. Path: inforamp.net!ts26-13
  2. From: rmorin@inforamp.net (Randy Charles Morin)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: Help!: Accessing classes declared externally
  5. Date: Tue, 06 Feb 96 22:46:24 GMT
  6. Organization: MiddleWorld SoftWare
  7. Message-ID: <4f8le3$ffl@sam.inforamp.net>
  8. References: <DMA4pp.E5v@ecf.toronto.edu>
  9. NNTP-Posting-Host: ts26-13.tor.inforamp.net
  10. X-Newsreader: News Xpress Version 1.0 Beta #4
  11.  
  12. In article <DMA4pp.E5v@ecf.toronto.edu>,
  13.    ber@ecf.toronto.edu (BER  PHILIP) wrote:
  14. >
  15. >extern class foobar;
  16. >
  17.  
  18. try this...
  19.  
  20. class _export foobar;      // in DLL source
  21. class foobar;        // in EXE source
  22.  
  23. I think you are confusing having an externally allocated data item and having 
  24. a externallly declared function.
  25.  
  26. Agrivar
  27.